Given
that I am at the homepage
4s 242ms
When
I click on the user icon
5ms
Then(/^I click on the user icon$/, function(callback) {
// Write code here that turns the phrase above into concrete actions
callback(null, 'pending');
});
And
I enter user in the email field
730ms
Then(/^I enter user in the email field$/, function(callback) {
// Write code here that turns the phrase above into concrete actions
callback(null, 'pending');
});
And
I enter user in the password field
516ms
Then(/^I enter user in the password field$/, function(callback) {
// Write code here that turns the phrase above into concrete actions
callback(null, 'pending');
});
And
I click the login button
2s 42ms
Then
I should be logged in
12ms
Then(/^I should be logged in$/, function(callback) {
// Write code here that turns the phrase above into concrete actions
callback(null, 'pending');
});
After
1s 846ms